home *** CD-ROM | disk | FTP | other *** search
- program celldemo;
-
- uses
- Forms,
- main in 'main.pas' {Base},
- AboutP in 'AboutP.pas' {AboutPro},
- Tempunit in 'Tempunit.pas' {Template},
- UDrag in 'UDrag.pas' {FDrag},
- Udummy in 'Udummy.pas' {FDummy},
- UText in 'UText.pas' {FText},
- UCelltyp in 'UCelltyp.pas' {FCelltyp},
- UStyle in 'UStyle.pas' {FStyle},
- UBack in 'UBack.pas' {FBack},
- UFormula in 'UFormula.pas' {FFormula},
- USort in 'USort.pas' {FSort},
- UChart in 'UChart.pas' {FChart},
- UPrint in 'UPrint.pas' {FPrint},
- UMultPag in 'UMultPag.pas' {FMultiPag},
- USave in 'USave.pas' {FSave},
- UFind in 'UFind.pas' {FFind},
- USize in 'USize.pas' {FSize},
- UInput in 'UInput.pas' {FInput},
- Uundo in 'Uundo.pas' {FUndo},
- UDemo in 'UDemo.pas' {FDemo},
- URoll in 'URoll.pas' {FRoll},
- UFile in 'UFile.pas' {FFile};
-
- {$R *.RES}
-
- begin
- Application.Initialize;
- Application.Title := 'Cell 3.1+ /Delphi Programming Demo';
- Application.CreateForm(TBase, Base);
- Application.CreateForm(TAboutPro, AboutPro);
- Application.CreateForm(TTemplate, Template);
- Application.CreateForm(TFDrag, FDrag);
- Application.CreateForm(TFDummy, FDummy);
- Application.CreateForm(TFText, FText);
- Application.CreateForm(TFCelltyp, FCelltyp);
- Application.CreateForm(TFStyle, FStyle);
- Application.CreateForm(TFBack, FBack);
- Application.CreateForm(TFFormula, FFormula);
- Application.CreateForm(TFSort, FSort);
- Application.CreateForm(TFChart, FChart);
- Application.CreateForm(TFPrint, FPrint);
- Application.CreateForm(TFMultiPag, FMultiPag);
- Application.CreateForm(TFSave, FSave);
- Application.CreateForm(TFFind, FFind);
- Application.CreateForm(TFSize, FSize);
- Application.CreateForm(TFInput, FInput);
- Application.CreateForm(TFUndo, FUndo);
- Application.CreateForm(TFDemo, FDemo);
- Application.CreateForm(TFRoll, FRoll);
- Application.CreateForm(TFFile, FFile);
- Application.Run;
- end.
-